diff --git a/src/clients/evm/ethereum-tx/abis/AxiomExecutionStrategy.json b/src/clients/evm/ethereum-tx/abis/AxiomExecutionStrategy.json index 5e34028..2c53ed5 100644 --- a/src/clients/evm/ethereum-tx/abis/AxiomExecutionStrategy.json +++ b/src/clients/evm/ethereum-tx/abis/AxiomExecutionStrategy.json @@ -1,46 +1,5 @@ [ "constructor(address,uint256,address,address,uint256,address,bytes32)", - "function axiomProposals(uint256) view returns (uint8, bytes32, uint256, uint256, uint256)", - "function axiomV2Callback(uint64,address,bytes32,uint256,bytes32[],bytes)", - "function axiomV2OffchainCallback(uint64,address,bytes32,uint256,bytes32[],bytes)", - "function axiomV2QueryAddress() view returns (address)", - "function disableSpace(address)", - "function enableSpace(address)", - "function execute(uint256,tuple(address,uint32,address,uint32,uint32,uint8,bytes32,uint256),uint256,uint256,uint256,bytes)", - "function executeMergedProposal(uint256,bytes)", - "function getMergedVotes(uint256) view returns (uint256, uint256, uint256)", - "function getProofStatus(uint256) view returns (uint8)", - "function getProposalStatus(tuple(address,uint32,address,uint32,uint32,uint8,bytes32,uint256),uint256,uint256,uint256) view returns (uint8)", - "function getStrategyType() pure returns (string)", - "function isMergedProposalAccepted(uint256) view returns (bool)", - "function isSpaceEnabled(address) view returns (uint256)", - "function owner() view returns (address)", - "function querySchema() view returns (bytes32)", - "function quorum() view returns (uint256)", - "function renounceOwnership()", - "function setQuerySchema(bytes32)", - "function setQuorum(uint256)", - "function setUp(bytes)", - "function space() view returns (address)", - "function transferOwnership(address)", - "event AxiomExecutionStrategySetUp(address indexed,uint256,address indexed,uint256,address,bytes32)", - "event AxiomProposalCreated(uint256,tuple(uint8,bytes32,uint256,uint256,uint256))", - "event AxiomProposalExecuted(uint256 indexed,uint256 indexed,bytes32)", - "event AxiomV2Call(uint64 indexed,address,bytes32 indexed,uint256 indexed)", - "event AxiomV2OffchainCall(uint64 indexed,address,bytes32 indexed,uint256 indexed)", - "event AxiomVoteVerifierAddressUpdated(address)", - "event Initialized(uint8)", - "event OnchainVotesFinalized(uint256 indexed,uint256 indexed,uint256,uint256,uint256,bytes32 indexed)", - "event OwnershipTransferred(address indexed,address indexed)", - "event ProvingTimeAllowanceUpdated(uint32)", - "event QuerySchemaUpdated(bytes32)", - "event QuorumUpdated(uint256)", - "event SnapshotAddressUpdated(address)", - "event SnapshotSlotUpdated(uint256)", - "event SpaceDisabled(address)", - "event SpaceEnabled(address)", - "event TransactionExecuted(tuple(address,uint256,bytes,uint8,uint256))", - "event WriteOffchainVotes(uint256,uint256,uint256,uint256,uint256)", "error ArrayLengthMismatch()", "error AuthenticatorNotWhitelisted()", "error AxiomProposalAlreadyExists(bytes32)", @@ -75,5 +34,46 @@ "error VotingDelayHasPassed()", "error VotingPeriodHasEnded()", "error VotingPeriodHasNotStarted()", - "error ZeroAddress()" + "error ZeroAddress()", + "event AxiomExecutionStrategySetUp(address indexed,uint256,address indexed,uint256,address,bytes32)", + "event AxiomProposalCreated(uint256,tuple(uint8,bytes32,uint256,uint256,uint256))", + "event AxiomProposalExecuted(uint256 indexed,uint256 indexed,bytes32)", + "event AxiomV2Call(uint64 indexed,address,bytes32 indexed,uint256 indexed)", + "event AxiomV2OffchainCall(uint64 indexed,address,bytes32 indexed,uint256 indexed)", + "event AxiomVoteVerifierAddressUpdated(address)", + "event Initialized(uint8)", + "event OnchainVotesFinalized(uint256 indexed,uint256 indexed,uint256,uint256,uint256,bytes32 indexed)", + "event OwnershipTransferred(address indexed,address indexed)", + "event ProvingTimeAllowanceUpdated(uint32)", + "event QuerySchemaUpdated(bytes32)", + "event QuorumUpdated(uint256)", + "event SnapshotAddressUpdated(address)", + "event SnapshotSlotUpdated(uint256)", + "event SpaceDisabled(address)", + "event SpaceEnabled(address)", + "event TransactionExecuted(tuple(address,uint256,bytes,uint8,uint256))", + "event WriteOffchainVotes(uint256,uint256,uint256,uint256,uint256)", + "function axiomProposals(uint256) view returns (uint8, bytes32, uint256, uint256, uint256)", + "function axiomV2Callback(uint64,address,bytes32,uint256,bytes32[],bytes)", + "function axiomV2OffchainCallback(uint64,address,bytes32,uint256,bytes32[],bytes)", + "function axiomV2QueryAddress() view returns (address)", + "function disableSpace(address)", + "function enableSpace(address)", + "function execute(uint256,tuple(address,uint32,address,uint32,uint32,uint8,bytes32,uint256),uint256,uint256,uint256,bytes)", + "function executeMergedProposal(uint256,bytes)", + "function getMergedVotes(uint256) view returns (uint256, uint256, uint256)", + "function getProofStatus(uint256) view returns (uint8)", + "function getProposalStatus(tuple(address,uint32,address,uint32,uint32,uint8,bytes32,uint256),uint256,uint256,uint256) view returns (uint8)", + "function getStrategyType() pure returns (string)", + "function isMergedProposalAccepted(uint256) view returns (bool)", + "function isSpaceEnabled(address) view returns (uint256)", + "function owner() view returns (address)", + "function querySchema() view returns (bytes32)", + "function quorum() view returns (uint256)", + "function renounceOwnership()", + "function setQuerySchema(bytes32)", + "function setQuorum(uint256)", + "function setUp(bytes)", + "function space() view returns (address)", + "function transferOwnership(address)" ] diff --git a/src/networks.ts b/src/networks.ts index efa7e3b..464ac13 100644 --- a/src/networks.ts +++ b/src/networks.ts @@ -43,7 +43,7 @@ export const evmSepolia: EvmNetworkConfig = { eip712ChainId: 11155111, executionStrategiesImplementations: { ...evmGoerli.executionStrategiesImplementations, - Axiom: '0xeaF78F64d136CBAef1eF18854f6465e9CbadA42c' + Axiom: '0xD5BCAD508683D3D36953Fff258609eE911BC9C54' } };