/accounts/{address}/contracts

Returns smart contracts details for a given account

Parameters

  • address REQUIRED (string) - Account bech32 address

  • from OPTIONAL (string) - Number of items to skip for the result set

  • sizeOPTIONAL (string) - Number of items to retrieve

Returns

  • address: (string) - Account bech32 address

  • deployTxHash : (string)

  • timestamp : (number) - u64 format

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/accounts/erd12x2q9pm5pv460hxva793ttcls7n97qszrlftq48dqe8ljuntxkuqr8zt32/contracts' \
  -H 'accept: application/json'

Result

[
  {
    "address": "erd1qqqqqqqqqqqqqpgqm027tmfepf7sxflr9pumgwf4gw2thtegxkuq38m2mu",
    "deployTxHash": "a2ac69a64f58a82baee1e2294d6268e76480f73849a5465eb826b915491319f7",
    "timestamp": 1657531908
  },
  {
    "address": "erd1qqqqqqqqqqqqqpgqmxxkuqwhxpwerqqs7arn5lv66hkzjp58xkuqzeukhr",
    "deployTxHash": "f9a10815dc304ef7ed5473be27db3d4c7aaeb60917a9a7e281bbe4a5385aee80",
    "timestamp": 1655403432
  }
]

Last updated