Skip to content

Commit

Permalink
chore: add stdlib deploy script (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xEillo authored Dec 4, 2023
1 parent 98e0f20 commit a6639d0
Show file tree
Hide file tree
Showing 8 changed files with 1,385 additions and 0 deletions.
185 changes: 185 additions & 0 deletions contracts/deployments/arbitrum-goerli/stdlib/ECDSAModule.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
{
"address": "0x385C52D44427ACf361e0Abb25fCF2e82c100AeD2",
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_portalRegistry",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "ArrayLengthMismatch",
"type": "error"
},
{
"inputs": [],
"name": "OnlyPortalOwner",
"type": "error"
},
{
"inputs": [],
"name": "SignerNotAuthorized",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "portal",
"type": "address"
},
{
"indexed": false,
"internalType": "address[]",
"name": "signers",
"type": "address[]"
},
{
"indexed": false,
"internalType": "bool[]",
"name": "authorizationStatus",
"type": "bool[]"
}
],
"name": "SignersAuthorized",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "portal",
"type": "address"
},
{
"internalType": "address",
"name": "signer",
"type": "address"
}
],
"name": "authorizedSigners",
"outputs": [
{
"internalType": "bool",
"name": "authorizedSigners",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "portalRegistry",
"outputs": [
{
"internalType": "contract PortalRegistry",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"components": [
{
"internalType": "bytes32",
"name": "schemaId",
"type": "bytes32"
},
{
"internalType": "uint64",
"name": "expirationDate",
"type": "uint64"
},
{
"internalType": "bytes",
"name": "subject",
"type": "bytes"
},
{
"internalType": "bytes",
"name": "attestationData",
"type": "bytes"
}
],
"internalType": "struct AttestationPayload",
"name": "_attestationPayload",
"type": "tuple"
},
{
"internalType": "bytes",
"name": "_validationPayload",
"type": "bytes"
},
{
"internalType": "address",
"name": "",
"type": "address"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "run",
"outputs": [],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "portal",
"type": "address"
},
{
"internalType": "address[]",
"name": "signers",
"type": "address[]"
},
{
"internalType": "bool[]",
"name": "authorizationStatus",
"type": "bool[]"
}
],
"name": "setAuthorizedSigners",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceID",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
}
]
}
Loading

0 comments on commit a6639d0

Please sign in to comment.