TransactionSEALED

□!■▫~~▫█░@▓■**@▒^#!╲■██~@▓░%▒╱@▫■█○░╱□$□@~^●#^▓░◆╳╱@■%█▫▓●@%?◆╲!

Transaction ID

Timestamp

Aug 05, 2024, 02:13:26 PM UTC
1y ago

Block Height

83,918,675

Computation

0

Proposerseq:309 key:336

Authorizers

1

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "212",
        "32",
        "46",
        "154",
        "200",
        "109",
        "119",
        "8",
        "9",
        "230",
        "225",
        "46",
        "18",
        "234",
        "50",
        "165",
        "132",
        "177",
        "230",
        "32",
        "253",
        "82",
        "35",
        "90",
        "194",
        "204",
        "142",
        "58",
        "214",
        "43",
        "20",
        "101",
        "51",
        "86",
        "62",
        "218",
        "124",
        "88",
        "25",
        "216",
        "47",
        "145",
        "198",
        "150",
        "98",
        "243",
        "16",
        "71",
        "87",
        "16",
        "248",
        "123",
        "38",
        "197",
        "253",
        "247",
        "238",
        "198",
        "240",
        "177",
        "241",
        "101",
        "150",
        "93"
      ],
      "signatureAlgorithm": {
        "id": "SignatureAlgorithm",
        "fields": [
          {
            "name": "rawValue",
            "value": {
              "type": "UInt8",
              "value": "1"
            }
          }
        ]
      }
    },
    "hashAlgorithm": {
      "id": "HashAlgorithm",
      "fields": [
        {
          "name": "rawValue",
          "value": {
            "type": "UInt8",
            "value": "1"
          }
        }
      ]
    },
    "weight": "1000.00000000",
    "isRevoked": false
  },
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "212",
        "32",
        "46",
        "154",
        "200",
        "109",
        "119",
        "8",
        "9",
        "230",
        "225",
        "46",
        "18",
        "234",
        "50",
        "165",
        "132",
        "177",
        "230",
        "32",
        "253",
        "82",
        "35",
        "90",
        "194",
        "204",
        "142",
        "58",
        "214",
        "43",
        "20",
        "101",
        "51",
        "86",
        "62",
        "218",
        "124",
        "88",
        "25",
        "216",
        "47",
        "145",
        "198",
        "150",
        "98",
        "243",
        "16",
        "71",
        "87",
        "16",
        "248",
        "123",
        "38",
        "197",
        "253",
        "247",
        "238",
        "198",
        "240",
        "177",
        "241",
        "101",
        "150",
        "93"
      ],
      "signatureAlgorithm": {
        "id": "SignatureAlgorithm",
        "fields": [
          {
            "name": "rawValue",
            "value": {
              "type": "UInt8",
              "value": "1"
            }
          }
        ]
      }
    },
    "hashAlgorithm": {
      "id": "HashAlgorithm",
      "fields": [
        {
          "name": "rawValue",
          "value": {
            "type": "UInt8",
            "value": "1"
          }
        }
      ]
    },
    "weight": "1000.00000000",
    "isRevoked": false
  },
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "212",
        "32",
        "46",
        "154",
        "200",
        "109",
        "119",
        "8",
        "9",
        "230",
        "225",
        "46",
        "18",
        "234",
        "50",
        "165",
        "132",
        "177",
        "230",
        "32",
        "253",
        "82",
        "35",
        "90",
        "194",
        "204",
        "142",
        "58",
        "214",
        "43",
        "20",
        "101",
        "51",
        "86",
        "62",
        "218",
        "124",
        "88",
        "25",
        "216",
        "47",
        "145",
        "198",
        "150",
        "98",
        "243",
        "16",
        "71",
        "87",
        "16",
        "248",
        "123",
        "38",
        "197",
        "253",
        "247",
        "238",
        "198",
        "240",
        "177",
        "241",
        "101",
        "150",
        "93"
      ],
      "signatureAlgorithm": {
        "id": "SignatureAlgorithm",
        "fields": [
          {
            "name": "rawValue",
            "value": {
              "type": "UInt8",
              "value": "1"
            }
          }
        ]
      }
    },
    "hashAlgorithm": {
      "id": "HashAlgorithm",
      "fields": [
        {
          "name": "rawValue",
          "value": {
            "type": "UInt8",
            "value": "1"
          }
        }
      ]
    },
    "weight": "1000.00000000",
    "isRevoked": false
  }
]
1contracts{String
{}

Cadence Script

1import Crypto
2
3transaction(publicKeys: [Crypto.KeyListEntry], contracts: {String: String}) {
4	prepare(signer: AuthAccount) {
5		let account = AuthAccount(payer: signer)
6
7		// add all the keys to the account
8		for key in publicKeys {
9			account.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)
10		}
11		
12		// add contracts if provided
13		for contract in contracts.keys {
14			account.contracts.add(name: contract, code: contracts[contract]!.decodeHex())
15		}
16	}
17}