TransactionSEALED

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

Transaction ID

Timestamp

Jul 16, 2024, 08:52:10 PM UTC
1y ago

Block Height

82,560,164

Computation

0

Proposerseq:318 key:219

Authorizers

1

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "39",
        "54",
        "86",
        "48",
        "172",
        "216",
        "95",
        "81",
        "53",
        "16",
        "32",
        "238",
        "245",
        "61",
        "183",
        "153",
        "129",
        "206",
        "144",
        "92",
        "99",
        "198",
        "74",
        "76",
        "228",
        "141",
        "26",
        "93",
        "174",
        "224",
        "73",
        "214",
        "220",
        "14",
        "181",
        "243",
        "247",
        "36",
        "82",
        "185",
        "151",
        "171",
        "156",
        "48",
        "63",
        "1",
        "41",
        "55",
        "106",
        "100",
        "152",
        "220",
        "41",
        "7",
        "123",
        "227",
        "42",
        "113",
        "193",
        "64",
        "133",
        "99",
        "126",
        "26"
      ],
      "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": [
        "39",
        "54",
        "86",
        "48",
        "172",
        "216",
        "95",
        "81",
        "53",
        "16",
        "32",
        "238",
        "245",
        "61",
        "183",
        "153",
        "129",
        "206",
        "144",
        "92",
        "99",
        "198",
        "74",
        "76",
        "228",
        "141",
        "26",
        "93",
        "174",
        "224",
        "73",
        "214",
        "220",
        "14",
        "181",
        "243",
        "247",
        "36",
        "82",
        "185",
        "151",
        "171",
        "156",
        "48",
        "63",
        "1",
        "41",
        "55",
        "106",
        "100",
        "152",
        "220",
        "41",
        "7",
        "123",
        "227",
        "42",
        "113",
        "193",
        "64",
        "133",
        "99",
        "126",
        "26"
      ],
      "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": [
        "39",
        "54",
        "86",
        "48",
        "172",
        "216",
        "95",
        "81",
        "53",
        "16",
        "32",
        "238",
        "245",
        "61",
        "183",
        "153",
        "129",
        "206",
        "144",
        "92",
        "99",
        "198",
        "74",
        "76",
        "228",
        "141",
        "26",
        "93",
        "174",
        "224",
        "73",
        "214",
        "220",
        "14",
        "181",
        "243",
        "247",
        "36",
        "82",
        "185",
        "151",
        "171",
        "156",
        "48",
        "63",
        "1",
        "41",
        "55",
        "106",
        "100",
        "152",
        "220",
        "41",
        "7",
        "123",
        "227",
        "42",
        "113",
        "193",
        "64",
        "133",
        "99",
        "126",
        "26"
      ],
      "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}