TransactionSEALED

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

Transaction ID

Timestamp

Sep 05, 2024, 12:47:02 PM UTC
1y ago

Block Height

86,041,824

Computation

0

Proposerseq:330 key:547

Authorizers

1

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "51",
        "54",
        "112",
        "226",
        "141",
        "46",
        "138",
        "148",
        "140",
        "30",
        "104",
        "137",
        "187",
        "207",
        "85",
        "5",
        "142",
        "16",
        "87",
        "102",
        "189",
        "230",
        "110",
        "228",
        "219",
        "76",
        "194",
        "211",
        "182",
        "27",
        "102",
        "224",
        "152",
        "192",
        "185",
        "150",
        "211",
        "175",
        "255",
        "185",
        "28",
        "162",
        "217",
        "153",
        "197",
        "105",
        "1",
        "171",
        "27",
        "235",
        "117",
        "184",
        "34",
        "55",
        "67",
        "17",
        "243",
        "46",
        "253",
        "232",
        "215",
        "205",
        "9",
        "8"
      ],
      "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": [
        "51",
        "54",
        "112",
        "226",
        "141",
        "46",
        "138",
        "148",
        "140",
        "30",
        "104",
        "137",
        "187",
        "207",
        "85",
        "5",
        "142",
        "16",
        "87",
        "102",
        "189",
        "230",
        "110",
        "228",
        "219",
        "76",
        "194",
        "211",
        "182",
        "27",
        "102",
        "224",
        "152",
        "192",
        "185",
        "150",
        "211",
        "175",
        "255",
        "185",
        "28",
        "162",
        "217",
        "153",
        "197",
        "105",
        "1",
        "171",
        "27",
        "235",
        "117",
        "184",
        "34",
        "55",
        "67",
        "17",
        "243",
        "46",
        "253",
        "232",
        "215",
        "205",
        "9",
        "8"
      ],
      "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": [
        "51",
        "54",
        "112",
        "226",
        "141",
        "46",
        "138",
        "148",
        "140",
        "30",
        "104",
        "137",
        "187",
        "207",
        "85",
        "5",
        "142",
        "16",
        "87",
        "102",
        "189",
        "230",
        "110",
        "228",
        "219",
        "76",
        "194",
        "211",
        "182",
        "27",
        "102",
        "224",
        "152",
        "192",
        "185",
        "150",
        "211",
        "175",
        "255",
        "185",
        "28",
        "162",
        "217",
        "153",
        "197",
        "105",
        "1",
        "171",
        "27",
        "235",
        "117",
        "184",
        "34",
        "55",
        "67",
        "17",
        "243",
        "46",
        "253",
        "232",
        "215",
        "205",
        "9",
        "8"
      ],
      "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}