Skip to content

Commit

Permalink
regenerate artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrs committed Sep 7, 2023
1 parent 0d3e6ed commit 5464530
Show file tree
Hide file tree
Showing 22 changed files with 799 additions and 84 deletions.
184 changes: 184 additions & 0 deletions packages/store/abi/EchoSubscriber.sol/EchoSubscriber.abi.json.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
declare const abi: [
{
anonymous: false;
inputs: [
{
indexed: false;
internalType: "bytes";
name: "";
type: "bytes";
}
];
name: "HookCalled";
type: "event";
},
{
inputs: [
{
internalType: "bytes32";
name: "table";
type: "bytes32";
},
{
internalType: "bytes32[]";
name: "key";
type: "bytes32[]";
},
{
internalType: "Schema";
name: "valueSchema";
type: "bytes32";
}
];
name: "onAfterDeleteRecord";
outputs: [];
stateMutability: "nonpayable";
type: "function";
},
{
inputs: [
{
internalType: "bytes32";
name: "table";
type: "bytes32";
},
{
internalType: "bytes32[]";
name: "key";
type: "bytes32[]";
},
{
internalType: "uint8";
name: "schemaIndex";
type: "uint8";
},
{
internalType: "bytes";
name: "data";
type: "bytes";
},
{
internalType: "Schema";
name: "valueSchem";
type: "bytes32";
}
];
name: "onAfterSetField";
outputs: [];
stateMutability: "nonpayable";
type: "function";
},
{
inputs: [
{
internalType: "bytes32";
name: "table";
type: "bytes32";
},
{
internalType: "bytes32[]";
name: "key";
type: "bytes32[]";
},
{
internalType: "bytes";
name: "data";
type: "bytes";
},
{
internalType: "Schema";
name: "valueSchema";
type: "bytes32";
}
];
name: "onAfterSetRecord";
outputs: [];
stateMutability: "nonpayable";
type: "function";
},
{
inputs: [
{
internalType: "bytes32";
name: "table";
type: "bytes32";
},
{
internalType: "bytes32[]";
name: "key";
type: "bytes32[]";
},
{
internalType: "Schema";
name: "valueSchema";
type: "bytes32";
}
];
name: "onBeforeDeleteRecord";
outputs: [];
stateMutability: "nonpayable";
type: "function";
},
{
inputs: [
{
internalType: "bytes32";
name: "table";
type: "bytes32";
},
{
internalType: "bytes32[]";
name: "key";
type: "bytes32[]";
},
{
internalType: "uint8";
name: "schemaIndex";
type: "uint8";
},
{
internalType: "bytes";
name: "data";
type: "bytes";
},
{
internalType: "Schema";
name: "valueSchema";
type: "bytes32";
}
];
name: "onBeforeSetField";
outputs: [];
stateMutability: "nonpayable";
type: "function";
},
{
inputs: [
{
internalType: "bytes32";
name: "table";
type: "bytes32";
},
{
internalType: "bytes32[]";
name: "key";
type: "bytes32[]";
},
{
internalType: "bytes";
name: "data";
type: "bytes";
},
{
internalType: "Schema";
name: "valueSchema";
type: "bytes32";
}
];
name: "onBeforeSetRecord";
outputs: [];
stateMutability: "nonpayable";
type: "function";
}
];
export default abi;
7 changes: 6 additions & 1 deletion packages/store/abi/IStore.sol/IStore.abi.json.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,13 @@ declare const abi: [
},
{
internalType: "contract IStoreHook";
name: "hook";
name: "hookAddress";
type: "address";
},
{
internalType: "uint8";
name: "enabledHooksBitmap";
type: "uint8";
}
];
name: "registerStoreHook";
Expand Down
67 changes: 59 additions & 8 deletions packages/store/abi/IStore.sol/IStoreHook.abi.json.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
declare const abi: [
{
inputs: [
{
internalType: "bytes32";
name: "table";
type: "bytes32";
},
{
internalType: "bytes32[]";
name: "key";
type: "bytes32[]";
},
{
internalType: "Schema";
name: "valueSchema";
type: "bytes32";
}
];
name: "onAfterDeleteRecord";
outputs: [];
stateMutability: "nonpayable";
type: "function";
},
{
inputs: [
{
Expand Down Expand Up @@ -44,11 +67,6 @@ declare const abi: [
name: "key";
type: "bytes32[]";
},
{
internalType: "uint8";
name: "schemaIndex";
type: "uint8";
},
{
internalType: "bytes";
name: "data";
Expand All @@ -60,7 +78,7 @@ declare const abi: [
type: "bytes32";
}
];
name: "onBeforeSetField";
name: "onAfterSetRecord";
outputs: [];
stateMutability: "nonpayable";
type: "function";
Expand All @@ -83,7 +101,40 @@ declare const abi: [
type: "bytes32";
}
];
name: "onDeleteRecord";
name: "onBeforeDeleteRecord";
outputs: [];
stateMutability: "nonpayable";
type: "function";
},
{
inputs: [
{
internalType: "bytes32";
name: "table";
type: "bytes32";
},
{
internalType: "bytes32[]";
name: "key";
type: "bytes32[]";
},
{
internalType: "uint8";
name: "schemaIndex";
type: "uint8";
},
{
internalType: "bytes";
name: "data";
type: "bytes";
},
{
internalType: "Schema";
name: "valueSchema";
type: "bytes32";
}
];
name: "onBeforeSetField";
outputs: [];
stateMutability: "nonpayable";
type: "function";
Expand Down Expand Up @@ -111,7 +162,7 @@ declare const abi: [
type: "bytes32";
}
];
name: "onSetRecord";
name: "onBeforeSetRecord";
outputs: [];
stateMutability: "nonpayable";
type: "function";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ declare const abi: [
},
{
internalType: "contract IStoreHook";
name: "hook";
name: "hookAddress";
type: "address";
},
{
internalType: "uint8";
name: "enabledHooksBitmap";
type: "uint8";
}
];
name: "registerStoreHook";
Expand Down
Loading

0 comments on commit 5464530

Please sign in to comment.