Skip to content

Commit aa09c58

Browse files
committed
updated onboard contract address and ABI
1 parent 0d90d50 commit aa09c58

File tree

1 file changed

+27
-33
lines changed

1 file changed

+27
-33
lines changed

src/account/onboard-contract.ts

Lines changed: 27 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,40 @@
1-
export const ONBOARD_CONTRACT_ADDRESS = "0x9E6987C8fD552d90c252B7fe4aF2387D47f928AE"
1+
export const ONBOARD_CONTRACT_ADDRESS = "0x5D49C3F49F19dc4e257975Fb1CcE057b3796f5F1"
22
export const ONBOARD_CONTRACT_ABI = [
33
{
4-
anonymous: false,
5-
inputs: [
4+
"anonymous": false,
5+
"inputs": [
66
{
7-
indexed: true,
8-
internalType: "address",
9-
name: "_from",
10-
type: "address",
7+
"indexed": true,
8+
"internalType": "address",
9+
"name": "_from",
10+
"type": "address"
1111
},
1212
{
13-
indexed: false,
14-
internalType: "bytes",
15-
name: "userKey",
16-
type: "bytes",
17-
},
13+
"indexed": false,
14+
"internalType": "bytes",
15+
"name": "userKey",
16+
"type": "bytes"
17+
}
1818
],
19-
name: "AccountOnboarded",
20-
type: "event",
19+
"name": "AccountOnboarded",
20+
"type": "event"
2121
},
2222
{
23-
inputs: [
24-
{
25-
internalType: "bytes",
26-
name: "signedEK",
27-
type: "bytes",
28-
},
23+
"inputs": [
2924
{
30-
internalType: "bytes",
31-
name: "signature",
32-
type: "bytes",
25+
"internalType": "bytes",
26+
"name": "signedEK",
27+
"type": "bytes"
3328
},
34-
],
35-
name: "OnboardAccount",
36-
outputs: [
3729
{
38-
internalType: "bytes",
39-
name: "accountKey",
40-
type: "bytes",
41-
},
30+
"internalType": "bytes",
31+
"name": "signature",
32+
"type": "bytes"
33+
}
4234
],
43-
stateMutability: "nonpayable",
44-
type: "function",
45-
},
35+
"name": "OnboardAccount",
36+
"outputs": [],
37+
"stateMutability": "nonpayable",
38+
"type": "function"
39+
}
4640
]

0 commit comments

Comments
 (0)