TransactionSEALED

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

Transaction ID

Timestamp

Sep 05, 2024, 01:16:04 PM UTC
1y ago

Block Height

86,041,844

Computation

0

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "95",
        "234",
        "178",
        "39",
        "234",
        "134",
        "21",
        "113",
        "67",
        "83",
        "196",
        "163",
        "245",
        "24",
        "100",
        "52",
        "135",
        "195",
        "18",
        "19",
        "27",
        "85",
        "28",
        "94",
        "211",
        "233",
        "208",
        "67",
        "173",
        "110",
        "121",
        "113",
        "1",
        "18",
        "203",
        "186",
        "49",
        "73",
        "198",
        "88",
        "136",
        "10",
        "253",
        "55",
        "63",
        "115",
        "16",
        "98",
        "95",
        "86",
        "128",
        "212",
        "2",
        "236",
        "3",
        "14",
        "152",
        "87",
        "149",
        "217",
        "131",
        "170",
        "109",
        "46"
      ],
      "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": [
        "95",
        "234",
        "178",
        "39",
        "234",
        "134",
        "21",
        "113",
        "67",
        "83",
        "196",
        "163",
        "245",
        "24",
        "100",
        "52",
        "135",
        "195",
        "18",
        "19",
        "27",
        "85",
        "28",
        "94",
        "211",
        "233",
        "208",
        "67",
        "173",
        "110",
        "121",
        "113",
        "1",
        "18",
        "203",
        "186",
        "49",
        "73",
        "198",
        "88",
        "136",
        "10",
        "253",
        "55",
        "63",
        "115",
        "16",
        "98",
        "95",
        "86",
        "128",
        "212",
        "2",
        "236",
        "3",
        "14",
        "152",
        "87",
        "149",
        "217",
        "131",
        "170",
        "109",
        "46"
      ],
      "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": [
        "95",
        "234",
        "178",
        "39",
        "234",
        "134",
        "21",
        "113",
        "67",
        "83",
        "196",
        "163",
        "245",
        "24",
        "100",
        "52",
        "135",
        "195",
        "18",
        "19",
        "27",
        "85",
        "28",
        "94",
        "211",
        "233",
        "208",
        "67",
        "173",
        "110",
        "121",
        "113",
        "1",
        "18",
        "203",
        "186",
        "49",
        "73",
        "198",
        "88",
        "136",
        "10",
        "253",
        "55",
        "63",
        "115",
        "16",
        "98",
        "95",
        "86",
        "128",
        "212",
        "2",
        "236",
        "3",
        "14",
        "152",
        "87",
        "149",
        "217",
        "131",
        "170",
        "109",
        "46"
      ],
      "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}