Telos

escrow.start

Contract

{
  "version": "eosio::abi/1.1",
  "types": [
    {
      "new_type_name": "double_t",
      "type": "float64"
    }
  ],
  "structs": [
    {
      "name": "cancellock",
      "base": "",
      "fields": [
        {
          "name": "lock_id",
          "type": "uint64"
        }
      ]
    },
    {
      "name": "claim",
      "base": "",
      "fields": [
        {
          "name": "beneficiary",
          "type": "name"
        }
      ]
    },
    {
      "name": "config",
      "base": "",
      "fields": [
        {
          "name": "pools_account",
          "type": "name"
        },
        {
          "name": "enabled",
          "type": "bool"
        }
      ]
    },
    {
      "name": "extended_symbol",
      "base": "",
      "fields": [
        {
          "name": "sym",
          "type": "symbol"
        },
        {
          "name": "contract",
          "type": "name"
        }
      ]
    },
    {
      "name": "init",
      "base": "",
      "fields": [
        {
          "name": "pools_account",
          "type": "name"
        },
        {
          "name": "enabled",
          "type": "bool"
        }
      ]
    },
    {
      "name": "lock",
      "base": "",
      "fields": [
        {
          "name": "lock_type",
          "type": "name"
        },
        {
          "name": "sponsor",
          "type": "name"
        },
        {
          "name": "beneficiary",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "extended_asset"
        },
        {
          "name": "trigger_source",
          "type": "name"
        },
        {
          "name": "trigger_event",
          "type": "name"
        },
        {
          "name": "vesting_date",
          "type": "time_point"
        },
        {
          "name": "notes",
          "type": "string"
        }
      ]
    },
    {
      "name": "settings",
      "base": "",
      "fields": [
        {
          "name": "admin",
          "type": "name"
        },
        {
          "name": "platform_token",
          "type": "extended_symbol"
        },
        {
          "name": "featured_pools",
          "type": "uint64[]"
        },
        {
          "name": "listing_fee",
          "type": "asset"
        },
        {
          "name": "premium_access_fee",
          "type": "asset"
        },
        {
          "name": "social_fee",
          "type": "asset"
        },
        {
          "name": "lockup_buckets",
          "type": "uint32"
        },
        {
          "name": "unstake_buckets",
          "type": "uint32"
        },
        {
          "name": "social_buckets",
          "type": "uint32"
        },
        {
          "name": "fee_account",
          "type": "name"
        },
        {
          "name": "success_fee",
          "type": "double_t"
        },
        {
          "name": "website",
          "type": "string"
        },
        {
          "name": "contact",
          "type": "string"
        },
        {
          "name": "sourcecode",
          "type": "string"
        },
        {
          "name": "enabled",
          "type": "bool"
        },
        {
          "name": "last_pool_id",
          "type": "uint64"
        },
        {
          "name": "last_pool_account_id",
          "type": "uint64"
        },
        {
          "name": "last_token_id",
          "type": "uint64"
        },
        {
          "name": "stake_pool",
          "type": "asset"
        }
      ]
    },
    {
      "name": "token_lock",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "lock_type",
          "type": "name"
        },
        {
          "name": "sponsor",
          "type": "name"
        },
        {
          "name": "beneficiary",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "extended_asset"
        },
        {
          "name": "trigger_source",
          "type": "name"
        },
        {
          "name": "trigger_event",
          "type": "name"
        },
        {
          "name": "vesting_date",
          "type": "time_point"
        },
        {
          "name": "locked",
          "type": "bool"
        },
        {
          "name": "notes",
          "type": "string"
        },
        {
          "name": "created_date",
          "type": "time_point"
        },
        {
          "name": "updated_date",
          "type": "time_point"
        }
      ]
    },
    {
      "name": "wallet",
      "base": "",
      "fields": [
        {
          "name": "id",
          "type": "uint64"
        },
        {
          "name": "token",
          "type": "extended_symbol"
        },
        {
          "name": "locked_balance",
          "type": "asset"
        },
        {
          "name": "liquid_balance",
          "type": "asset"
        }
      ]
    },
    {
      "name": "withdraw",
      "base": "",
      "fields": [
        {
          "name": "account",
          "type": "name"
        },
        {
          "name": "quantity",
          "type": "extended_asset"
        }
      ]
    }
  ],
  "actions": [
    {
      "name": "cancellock",
      "type": "cancellock",
      "ricardian_contract": ""
    },
    {
      "name": "claim",
      "type": "claim",
      "ricardian_contract": ""
    },
    {
      "name": "init",
      "type": "init",
      "ricardian_contract": ""
    },
    {
      "name": "lock",
      "type": "lock",
      "ricardian_contract": ""
    },
    {
      "name": "withdraw",
      "type": "withdraw",
      "ricardian_contract": ""
    }
  ],
  "tables": [
    {
      "name": "config",
      "index_type": "i64",
      "key_names": [],
      "key_types": [],
      "type": "config"
    },
    {
      "name": "locks",
      "index_type": "i64",
      "key_names": [],
      "key_types": [],
      "type": "token_lock"
    },
    {
      "name": "settings",
      "index_type": "i64",
      "key_names": [],
      "key_types": [],
      "type": "settings"
    },
    {
      "name": "wallets",
      "index_type": "i64",
      "key_names": [],
      "key_types": [],
      "type": "wallet"
    }
  ],
  "ricardian_clauses": [],
  "error_messages": [],
  "abi_extensions": [],
  "variants": [],
  "action_results": []
}