TransactionSEALED

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

Transaction ID

Timestamp

Jul 17, 2024, 11:46:15 AM UTC
1y ago

Block Height

82,602,614

Computation

0

Proposerseq:287 key:438

Authorizers

1

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "211",
        "217",
        "46",
        "146",
        "59",
        "174",
        "241",
        "246",
        "5",
        "215",
        "195",
        "42",
        "66",
        "52",
        "7",
        "216",
        "180",
        "181",
        "62",
        "129",
        "227",
        "135",
        "158",
        "34",
        "198",
        "156",
        "124",
        "18",
        "124",
        "134",
        "127",
        "1",
        "174",
        "213",
        "95",
        "37",
        "145",
        "14",
        "164",
        "17",
        "199",
        "122",
        "31",
        "151",
        "103",
        "240",
        "45",
        "223",
        "136",
        "235",
        "92",
        "240",
        "225",
        "37",
        "227",
        "119",
        "53",
        "13",
        "210",
        "214",
        "47",
        "119",
        "141",
        "160"
      ],
      "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": [
        "211",
        "217",
        "46",
        "146",
        "59",
        "174",
        "241",
        "246",
        "5",
        "215",
        "195",
        "42",
        "66",
        "52",
        "7",
        "216",
        "180",
        "181",
        "62",
        "129",
        "227",
        "135",
        "158",
        "34",
        "198",
        "156",
        "124",
        "18",
        "124",
        "134",
        "127",
        "1",
        "174",
        "213",
        "95",
        "37",
        "145",
        "14",
        "164",
        "17",
        "199",
        "122",
        "31",
        "151",
        "103",
        "240",
        "45",
        "223",
        "136",
        "235",
        "92",
        "240",
        "225",
        "37",
        "227",
        "119",
        "53",
        "13",
        "210",
        "214",
        "47",
        "119",
        "141",
        "160"
      ],
      "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": [
        "211",
        "217",
        "46",
        "146",
        "59",
        "174",
        "241",
        "246",
        "5",
        "215",
        "195",
        "42",
        "66",
        "52",
        "7",
        "216",
        "180",
        "181",
        "62",
        "129",
        "227",
        "135",
        "158",
        "34",
        "198",
        "156",
        "124",
        "18",
        "124",
        "134",
        "127",
        "1",
        "174",
        "213",
        "95",
        "37",
        "145",
        "14",
        "164",
        "17",
        "199",
        "122",
        "31",
        "151",
        "103",
        "240",
        "45",
        "223",
        "136",
        "235",
        "92",
        "240",
        "225",
        "37",
        "227",
        "119",
        "53",
        "13",
        "210",
        "214",
        "47",
        "119",
        "141",
        "160"
      ],
      "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}