Skip to content

Commit 010009b

Browse files
committed
wip, but now we have the code to create sessions
1 parent dfa589b commit 010009b

File tree

2 files changed

+209
-43
lines changed

2 files changed

+209
-43
lines changed

packages/hypergraph/src/identity/abis.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,20 @@ export const safeModuleManagerAbi = [
2727
type: 'function',
2828
},
2929
];
30+
31+
// We only use this for revokeEnableSignature to use as a noop when creating a smart session
32+
export const smartSessionsAbi = [
33+
{
34+
inputs: [
35+
{
36+
internalType: 'PermissionId',
37+
name: 'permissionId',
38+
type: 'bytes32',
39+
},
40+
],
41+
name: 'revokeEnableSignature',
42+
outputs: [],
43+
stateMutability: 'nonpayable',
44+
type: 'function',
45+
},
46+
];

0 commit comments

Comments
 (0)