We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f311f20 commit bcfbab4Copy full SHA for bcfbab4
safe-transaction/src/index.ts
@@ -35,13 +35,13 @@ async function run() {
35
core.info(`🔑 Proposer Address: ${wallet.address}`);
36
37
// Initialize API Kit
38
- const apiKit = new SafeApiKit({
+ const apiKit = new SafeApiKit.default({
39
chainId: 42161n, // Arbitrum
40
apiKey: safeApiKey,
41
});
42
43
// Initialize Protocol Kit
44
- const protocolKit = await Safe.create({
+ const protocolKit = await Safe.default.init({
45
provider: rpcUrl,
46
signer: proposerPrivateKey,
47
safeAddress: safeAddress,
0 commit comments