TransactionSEALED

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

Transaction ID

Timestamp

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

Block Height

86,041,824

Computation

0

Proposerseq:329 key:576

Authorizers

1

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "108",
        "46",
        "234",
        "251",
        "172",
        "151",
        "164",
        "178",
        "48",
        "36",
        "99",
        "47",
        "252",
        "70",
        "131",
        "39",
        "8",
        "247",
        "200",
        "73",
        "169",
        "44",
        "151",
        "165",
        "162",
        "169",
        "251",
        "94",
        "54",
        "185",
        "9",
        "191",
        "52",
        "106",
        "169",
        "31",
        "203",
        "85",
        "109",
        "133",
        "100",
        "42",
        "32",
        "169",
        "200",
        "220",
        "12",
        "253",
        "1",
        "1",
        "169",
        "43",
        "175",
        "106",
        "221",
        "106",
        "191",
        "230",
        "214",
        "86",
        "116",
        "125",
        "27",
        "204"
      ],
      "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": [
        "108",
        "46",
        "234",
        "251",
        "172",
        "151",
        "164",
        "178",
        "48",
        "36",
        "99",
        "47",
        "252",
        "70",
        "131",
        "39",
        "8",
        "247",
        "200",
        "73",
        "169",
        "44",
        "151",
        "165",
        "162",
        "169",
        "251",
        "94",
        "54",
        "185",
        "9",
        "191",
        "52",
        "106",
        "169",
        "31",
        "203",
        "85",
        "109",
        "133",
        "100",
        "42",
        "32",
        "169",
        "200",
        "220",
        "12",
        "253",
        "1",
        "1",
        "169",
        "43",
        "175",
        "106",
        "221",
        "106",
        "191",
        "230",
        "214",
        "86",
        "116",
        "125",
        "27",
        "204"
      ],
      "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": [
        "108",
        "46",
        "234",
        "251",
        "172",
        "151",
        "164",
        "178",
        "48",
        "36",
        "99",
        "47",
        "252",
        "70",
        "131",
        "39",
        "8",
        "247",
        "200",
        "73",
        "169",
        "44",
        "151",
        "165",
        "162",
        "169",
        "251",
        "94",
        "54",
        "185",
        "9",
        "191",
        "52",
        "106",
        "169",
        "31",
        "203",
        "85",
        "109",
        "133",
        "100",
        "42",
        "32",
        "169",
        "200",
        "220",
        "12",
        "253",
        "1",
        "1",
        "169",
        "43",
        "175",
        "106",
        "221",
        "106",
        "191",
        "230",
        "214",
        "86",
        "116",
        "125",
        "27",
        "204"
      ],
      "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}