Smart Contracts

Module: gbm_Bridge
back to overview
gbm_Bridge
Methods: 16
Instances: 2
Initialization

Parameters
{
  "token": {
    "index": "<UInt64>",
    "subindex": "<UInt64>"
  },
  "token_id": "<String with lowercase hex>",
  "validators": [
    [
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>"
    ]
  ],
  "validators_required": "<UInt8>"
}
Errors
None
Event
{
  "Enum": [
    {
      "NewAdmin": {
        "new_admin": {
          "Enum": [
            {
              "Account": [
                "<AccountAddress>"
              ]
            },
            {
              "Contract": [
                {
                  "index": "<UInt64>",
                  "subindex": "<UInt64>"
                }
              ]
            }
          ]
        }
      }
    },
    {
      "Deposit": {
        "amount": "<UInt64>",
        "destination": "<String of size 64 containing lowercase hex characters.>",
        "sender": {
          "Enum": [
            {
              "Account": [
                "<AccountAddress>"
              ]
            },
            {
              "Contract": [
                {
                  "index": "<UInt64>",
                  "subindex": "<UInt64>"
                }
              ]
            }
          ]
        }
      }
    },
    {
      "Withdraw": {
        "amount": "<UInt64>",
        "id": "<String of size 64 containing lowercase hex characters.>",
        "recipient": {
          "Enum": [
            {
              "Account": [
                "<AccountAddress>"
              ]
            },
            {
              "Contract": [
                {
                  "index": "<UInt64>",
                  "subindex": "<UInt64>"
                }
              ]
            }
          ]
        }
      }
    },
    {
      "AddValidator": {
        "validator": "<String of size 64 containing lowercase hex characters.>",
        "version": "<UInt32>"
      }
    },
    {
      "RemoveValidator": {
        "validator": "<String of size 64 containing lowercase hex characters.>",
        "version": "<UInt32>"
      }
    },
    {
      "SetRequiredValidators": {
        "validators_required": "<UInt8>"
      }
    }
  ]
}
Methods

Parameters
{
  "amount": "<UInt64>",
  "expiration": "<UInt64>",
  "id": [
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>"
  ],
  "indexes": [
    "<UInt8>"
  ],
  "signatures": [
    [
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>"
    ]
  ],
  "to": {
    "Enum": [
      {
        "Account": [
          "<AccountAddress>"
        ]
      },
      {
        "Contract": [
          {
            "index": "<UInt64>",
            "subindex": "<UInt64>"
          }
        ]
      }
    ]
  }
}
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
{
  "hash": [
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>"
  ]
}

Parameters
{
  "amount": "<UInt64>",
  "expiration": "<UInt64>",
  "id": [
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>"
  ],
  "indexes": [
    "<UInt8>"
  ],
  "signatures": [
    [
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>"
    ]
  ],
  "to": {
    "Enum": [
      {
        "Account": [
          "<AccountAddress>"
        ]
      },
      {
        "Contract": [
          {
            "index": "<UInt64>",
            "subindex": "<UInt64>"
          }
        ]
      }
    ]
  }
}
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
{
  "amount": "<UInt64>",
  "destination": [
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>",
    "<UInt8>"
  ]
}
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
[
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>"
]
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
[
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>",
  "<UInt8>"
]
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
"<UInt32>"
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
{
  "Enum": [
    {
      "Account": [
        "<AccountAddress>"
      ]
    },
    {
      "Contract": [
        {
          "index": "<UInt64>",
          "subindex": "<UInt64>"
        }
      ]
    }
  ]
}
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
{
  "paused": "<Bool>"
}
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
None
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
{
  "admin": {
    "Enum": [
      {
        "Account": [
          "<AccountAddress>"
        ]
      },
      {
        "Contract": [
          {
            "index": "<UInt64>",
            "subindex": "<UInt64>"
          }
        ]
      }
    ]
  },
  "paused": "<Bool>",
  "token": {
    "index": "<UInt64>",
    "subindex": "<UInt64>"
  },
  "token_id": "<String with lowercase hex>",
  "validators": [
    [
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>",
      "<UInt8>"
    ]
  ],
  "validators_required": "<UInt8>",
  "version": "<UInt32>"
}

Parameters
[
  "<String>"
]
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
[
  {
    "Enum": [
      {
        "NoSupport": []
      },
      {
        "Support": []
      },
      {
        "SupportBy": [
          [
            {
              "index": "<UInt64>",
              "subindex": "<UInt64>"
            }
          ]
        ]
      }
    ]
  }
]

Parameters
{
  "id": "<String>",
  "implementors": [
    {
      "index": "<UInt64>",
      "subindex": "<UInt64>"
    }
  ]
}
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
{
  "migrate": {
    "Enum": [
      {
        "None": []
      },
      {
        "Some": [
          [
            "<String>",
            "<String with lowercase hex>"
          ]
        ]
      }
    ]
  },
  "module": "<String of size 64 containing lowercase hex characters.>"
}
Errors
{
  "Enum": [
    {
      "Unauthorized": []
    },
    {
      "ParseParams": []
    },
    {
      "LogFull": []
    },
    {
      "LogMalformed": []
    },
    {
      "ContractPaused": []
    },
    {
      "InvokeContractError": []
    },
    {
      "InvokeTransferError": []
    },
    {
      "FailedUpgradeMissingModule": []
    },
    {
      "FailedUpgradeMissingContract": []
    },
    {
      "FailedUpgradeUnsupportedModuleVersion": []
    },
    {
      "InvalidCountOFValidatorsRequired": []
    },
    {
      "DuplicateWithdrawRequested": []
    },
    {
      "WithdrawAmountIsZero": []
    },
    {
      "WithdrawalIsExpired": []
    },
    {
      "InvalidValidatorIndex": []
    },
    {
      "DuplicateValidatorIndex": []
    },
    {
      "InvalidNumberOfSignaturesAndIndexes": []
    },
    {
      "IncorrectNumberOfSignaturesSupplied": []
    },
    {
      "InvalidSignature": []
    },
    {
      "DepositAmountIsZero": []
    }
  ]
}
Return
None

Parameters
None
Errors
None
Return
None

Parameters
None
Errors
None
Return
None

Parameters
None
Errors
None
Return
None

Parameters
None
Errors
None
Return
None


Release: 2024.12
Support CCDExplorer.io Uptime Backend Status CCDExplorer is supported by AesirX - Decentralized Consent & Data Ownership