@@ -14,7 +14,7 @@ describe("sign transaction", () => {
14
14
const contractPublisherAccount = Account . generate ( ) ;
15
15
const singleSignerED25519SenderAccount = Account . generate ( ) ;
16
16
const legacyED25519SenderAccount = Account . generate ( { legacy : true } ) ;
17
- const recieverAccounts = [ Account . generate ( ) , Account . generate ( ) ] ;
17
+ const receiverAccounts = [ Account . generate ( ) , Account . generate ( ) ] ;
18
18
const singleSignerSecp256k1Account = Account . generate ( { scheme : SigningSchemeInput . Secp256k1Ecdsa } ) ;
19
19
const secondarySignerAccount = Account . generate ( ) ;
20
20
const feePayerAccount = Account . generate ( ) ;
@@ -24,7 +24,7 @@ describe("sign transaction", () => {
24
24
singleSignerED25519SenderAccount ,
25
25
legacyED25519SenderAccount ,
26
26
singleSignerSecp256k1Account ,
27
- ...recieverAccounts ,
27
+ ...receiverAccounts ,
28
28
secondarySignerAccount ,
29
29
feePayerAccount ,
30
30
] ) ;
@@ -38,7 +38,7 @@ describe("sign transaction", () => {
38
38
sender : singleSignerED25519SenderAccount . accountAddress . toString ( ) ,
39
39
data : {
40
40
bytecode : singleSignerScriptBytecode ,
41
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
41
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
42
42
} ,
43
43
} ) ;
44
44
const accountAuthenticator = aptos . signTransaction ( {
@@ -55,7 +55,7 @@ describe("sign transaction", () => {
55
55
sender : singleSignerED25519SenderAccount . accountAddress . toString ( ) ,
56
56
data : {
57
57
function : `0x${ contractPublisherAccount . accountAddress . toStringWithoutPrefix ( ) } ::transfer::transfer` ,
58
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
58
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
59
59
} ,
60
60
} ) ;
61
61
const accountAuthenticator = aptos . signTransaction ( {
@@ -73,7 +73,7 @@ describe("sign transaction", () => {
73
73
data : {
74
74
multisigAddress : secondarySignerAccount . accountAddress ,
75
75
function : `0x${ contractPublisherAccount . accountAddress . toStringWithoutPrefix ( ) } ::transfer::transfer` ,
76
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
76
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
77
77
} ,
78
78
} ) ;
79
79
const accountAuthenticator = aptos . signTransaction ( {
@@ -92,7 +92,7 @@ describe("sign transaction", () => {
92
92
sender : singleSignerSecp256k1Account . accountAddress . toString ( ) ,
93
93
data : {
94
94
bytecode : singleSignerScriptBytecode ,
95
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
95
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
96
96
} ,
97
97
} ) ;
98
98
const accountAuthenticator = aptos . signTransaction ( {
@@ -109,7 +109,7 @@ describe("sign transaction", () => {
109
109
sender : singleSignerSecp256k1Account . accountAddress . toString ( ) ,
110
110
data : {
111
111
function : `0x${ contractPublisherAccount . accountAddress . toStringWithoutPrefix ( ) } ::transfer::transfer` ,
112
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
112
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
113
113
} ,
114
114
} ) ;
115
115
const accountAuthenticator = aptos . signTransaction ( {
@@ -127,7 +127,7 @@ describe("sign transaction", () => {
127
127
data : {
128
128
multisigAddress : secondarySignerAccount . accountAddress ,
129
129
function : `0x${ contractPublisherAccount . accountAddress . toStringWithoutPrefix ( ) } ::transfer::transfer` ,
130
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
130
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
131
131
} ,
132
132
} ) ;
133
133
const accountAuthenticator = aptos . signTransaction ( {
@@ -146,7 +146,7 @@ describe("sign transaction", () => {
146
146
sender : legacyED25519SenderAccount . accountAddress . toString ( ) ,
147
147
data : {
148
148
bytecode : singleSignerScriptBytecode ,
149
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
149
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
150
150
} ,
151
151
} ) ;
152
152
const accountAuthenticator = aptos . signTransaction ( {
@@ -163,7 +163,7 @@ describe("sign transaction", () => {
163
163
sender : legacyED25519SenderAccount . accountAddress . toString ( ) ,
164
164
data : {
165
165
function : `0x${ contractPublisherAccount . accountAddress . toStringWithoutPrefix ( ) } ::transfer::transfer` ,
166
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
166
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
167
167
} ,
168
168
} ) ;
169
169
const accountAuthenticator = aptos . signTransaction ( {
@@ -181,7 +181,7 @@ describe("sign transaction", () => {
181
181
data : {
182
182
multisigAddress : secondarySignerAccount . accountAddress ,
183
183
function : `0x${ contractPublisherAccount . accountAddress . toStringWithoutPrefix ( ) } ::transfer::transfer` ,
184
- functionArguments : [ new U64 ( 1 ) , recieverAccounts [ 0 ] . accountAddress ] ,
184
+ functionArguments : [ new U64 ( 1 ) , receiverAccounts [ 0 ] . accountAddress ] ,
185
185
} ,
186
186
} ) ;
187
187
const accountAuthenticator = aptos . signTransaction ( {
0 commit comments