TransactionSEALED

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

Transaction ID

Timestamp

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

Block Height

86,041,824

Computation

0

Proposerseq:467 key:13

Authorizers

1

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "177",
        "157",
        "125",
        "24",
        "111",
        "149",
        "20",
        "206",
        "31",
        "201",
        "118",
        "200",
        "66",
        "113",
        "165",
        "90",
        "75",
        "60",
        "233",
        "210",
        "42",
        "184",
        "90",
        "209",
        "249",
        "115",
        "225",
        "45",
        "30",
        "119",
        "204",
        "114",
        "13",
        "166",
        "59",
        "195",
        "239",
        "205",
        "118",
        "25",
        "83",
        "252",
        "41",
        "242",
        "186",
        "199",
        "71",
        "91",
        "42",
        "239",
        "139",
        "125",
        "253",
        "206",
        "116",
        "60",
        "61",
        "50",
        "12",
        "116",
        "133",
        "112",
        "47",
        "78"
      ],
      "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": [
        "177",
        "157",
        "125",
        "24",
        "111",
        "149",
        "20",
        "206",
        "31",
        "201",
        "118",
        "200",
        "66",
        "113",
        "165",
        "90",
        "75",
        "60",
        "233",
        "210",
        "42",
        "184",
        "90",
        "209",
        "249",
        "115",
        "225",
        "45",
        "30",
        "119",
        "204",
        "114",
        "13",
        "166",
        "59",
        "195",
        "239",
        "205",
        "118",
        "25",
        "83",
        "252",
        "41",
        "242",
        "186",
        "199",
        "71",
        "91",
        "42",
        "239",
        "139",
        "125",
        "253",
        "206",
        "116",
        "60",
        "61",
        "50",
        "12",
        "116",
        "133",
        "112",
        "47",
        "78"
      ],
      "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": [
        "177",
        "157",
        "125",
        "24",
        "111",
        "149",
        "20",
        "206",
        "31",
        "201",
        "118",
        "200",
        "66",
        "113",
        "165",
        "90",
        "75",
        "60",
        "233",
        "210",
        "42",
        "184",
        "90",
        "209",
        "249",
        "115",
        "225",
        "45",
        "30",
        "119",
        "204",
        "114",
        "13",
        "166",
        "59",
        "195",
        "239",
        "205",
        "118",
        "25",
        "83",
        "252",
        "41",
        "242",
        "186",
        "199",
        "71",
        "91",
        "42",
        "239",
        "139",
        "125",
        "253",
        "206",
        "116",
        "60",
        "61",
        "50",
        "12",
        "116",
        "133",
        "112",
        "47",
        "78"
      ],
      "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}