TransactionSEALED

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

Transaction ID

Timestamp

Aug 27, 2024, 08:56:57 AM UTC
1y ago

Block Height

85,420,810

Computation

0

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "100",
        "208",
        "97",
        "23",
        "118",
        "97",
        "248",
        "162",
        "49",
        "91",
        "91",
        "254",
        "213",
        "34",
        "100",
        "251",
        "210",
        "85",
        "179",
        "114",
        "66",
        "78",
        "47",
        "116",
        "84",
        "207",
        "125",
        "237",
        "84",
        "194",
        "255",
        "209",
        "149",
        "203",
        "166",
        "249",
        "31",
        "58",
        "23",
        "250",
        "110",
        "35",
        "63",
        "170",
        "62",
        "47",
        "122",
        "126",
        "83",
        "117",
        "250",
        "158",
        "18",
        "126",
        "165",
        "37",
        "245",
        "33",
        "112",
        "184",
        "100",
        "210",
        "78",
        "158"
      ],
      "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": [
        "100",
        "208",
        "97",
        "23",
        "118",
        "97",
        "248",
        "162",
        "49",
        "91",
        "91",
        "254",
        "213",
        "34",
        "100",
        "251",
        "210",
        "85",
        "179",
        "114",
        "66",
        "78",
        "47",
        "116",
        "84",
        "207",
        "125",
        "237",
        "84",
        "194",
        "255",
        "209",
        "149",
        "203",
        "166",
        "249",
        "31",
        "58",
        "23",
        "250",
        "110",
        "35",
        "63",
        "170",
        "62",
        "47",
        "122",
        "126",
        "83",
        "117",
        "250",
        "158",
        "18",
        "126",
        "165",
        "37",
        "245",
        "33",
        "112",
        "184",
        "100",
        "210",
        "78",
        "158"
      ],
      "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": [
        "100",
        "208",
        "97",
        "23",
        "118",
        "97",
        "248",
        "162",
        "49",
        "91",
        "91",
        "254",
        "213",
        "34",
        "100",
        "251",
        "210",
        "85",
        "179",
        "114",
        "66",
        "78",
        "47",
        "116",
        "84",
        "207",
        "125",
        "237",
        "84",
        "194",
        "255",
        "209",
        "149",
        "203",
        "166",
        "249",
        "31",
        "58",
        "23",
        "250",
        "110",
        "35",
        "63",
        "170",
        "62",
        "47",
        "122",
        "126",
        "83",
        "117",
        "250",
        "158",
        "18",
        "126",
        "165",
        "37",
        "245",
        "33",
        "112",
        "184",
        "100",
        "210",
        "78",
        "158"
      ],
      "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}