You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The EOA address that will sign the EIP-7702 transaction
493
+
* The delegated EOA address
478
494
*/
479
495
from: AddressDef;
480
496
};
481
497
498
+
/**
499
+
* EIP-7702 Session Key Execution
500
+
*/
501
+
exporttypeEip7702SessionKeyExecution={
502
+
/**
503
+
* The session key address is your server wallet, which has been granted a session key to the `account_address`
504
+
*/
505
+
sessionKeyAddress: AddressDef;
506
+
/**
507
+
* The account address is the address of a delegated account you want to execute the transaction on. This account has granted a session key to the `session_key_address`
508
+
*/
509
+
accountAddress: AddressDef;
510
+
};
511
+
482
512
exporttypeEmptyIdempotencySetResponse={
483
513
queueName: string;
484
514
message: string;
@@ -889,6 +919,64 @@ export type SendTransactionRequest = {
889
919
webhookOptions?: Array<WebhookOptions>;
890
920
};
891
921
922
+
exporttypeSerialisableAwsSdkError=
923
+
|{
924
+
message: string;
925
+
type: "CONSTRUCTION_FAILURE";
926
+
}
927
+
|{
928
+
message: string;
929
+
type: "TIMEOUT_ERROR";
930
+
}
931
+
|{
932
+
message: string;
933
+
type: "DISPATCH_FAILURE";
934
+
}
935
+
|{
936
+
message: string;
937
+
type: "RESPONSE_ERROR";
938
+
}
939
+
|{
940
+
message: string;
941
+
type: "SERVICE_ERROR";
942
+
}
943
+
|{
944
+
message: string;
945
+
type: "OTHER";
946
+
};
947
+
948
+
exporttypeSerialisableAwsSignerError=
949
+
|{
950
+
aws_sdk_error: SerialisableAwsSdkError;
951
+
type: "SIGN";
952
+
}
953
+
|{
954
+
aws_sdk_error: SerialisableAwsSdkError;
955
+
type: "GET_PUBLIC_KEY";
956
+
}
957
+
|{
958
+
message: string;
959
+
type: "K256";
960
+
}
961
+
|{
962
+
message: string;
963
+
type: "SPKI";
964
+
}
965
+
|{
966
+
message: string;
967
+
type: "HEX";
968
+
}
969
+
|{
970
+
type: "SIGNATURE_NOT_FOUND";
971
+
}
972
+
|{
973
+
type: "PUBLIC_KEY_NOT_FOUND";
974
+
}
975
+
|{
976
+
message: string;
977
+
type: "UNKNOWN";
978
+
};
979
+
892
980
exporttypeSerializableReqwestError=
893
981
|{
894
982
Builder: {
@@ -1552,6 +1640,7 @@ export type GetTransactionsResponses = {
1552
1640
}
1553
1641
|Array<unknown>;
1554
1642
transactionHash: string|null;
1643
+
status: string|null;
1555
1644
confirmedAt: string|null;
1556
1645
confirmedAtBlockNumber: string|null;
1557
1646
enrichedData:
@@ -1712,6 +1801,7 @@ export type SearchTransactionsResponses = {
0 commit comments