TransactionSEALED

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

Transaction ID

Timestamp

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

Block Height

86,041,824

Computation

0

Proposerseq:330 key:575

Authorizers

1

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "221",
        "182",
        "91",
        "160",
        "199",
        "182",
        "219",
        "252",
        "33",
        "189",
        "120",
        "87",
        "37",
        "192",
        "187",
        "165",
        "92",
        "78",
        "187",
        "223",
        "43",
        "39",
        "52",
        "4",
        "250",
        "182",
        "108",
        "89",
        "22",
        "167",
        "121",
        "67",
        "192",
        "255",
        "71",
        "48",
        "254",
        "218",
        "190",
        "11",
        "212",
        "83",
        "72",
        "39",
        "90",
        "104",
        "141",
        "64",
        "133",
        "182",
        "10",
        "160",
        "217",
        "54",
        "195",
        "232",
        "30",
        "95",
        "73",
        "56",
        "105",
        "9",
        "177",
        "143"
      ],
      "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": [
        "221",
        "182",
        "91",
        "160",
        "199",
        "182",
        "219",
        "252",
        "33",
        "189",
        "120",
        "87",
        "37",
        "192",
        "187",
        "165",
        "92",
        "78",
        "187",
        "223",
        "43",
        "39",
        "52",
        "4",
        "250",
        "182",
        "108",
        "89",
        "22",
        "167",
        "121",
        "67",
        "192",
        "255",
        "71",
        "48",
        "254",
        "218",
        "190",
        "11",
        "212",
        "83",
        "72",
        "39",
        "90",
        "104",
        "141",
        "64",
        "133",
        "182",
        "10",
        "160",
        "217",
        "54",
        "195",
        "232",
        "30",
        "95",
        "73",
        "56",
        "105",
        "9",
        "177",
        "143"
      ],
      "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": [
        "221",
        "182",
        "91",
        "160",
        "199",
        "182",
        "219",
        "252",
        "33",
        "189",
        "120",
        "87",
        "37",
        "192",
        "187",
        "165",
        "92",
        "78",
        "187",
        "223",
        "43",
        "39",
        "52",
        "4",
        "250",
        "182",
        "108",
        "89",
        "22",
        "167",
        "121",
        "67",
        "192",
        "255",
        "71",
        "48",
        "254",
        "218",
        "190",
        "11",
        "212",
        "83",
        "72",
        "39",
        "90",
        "104",
        "141",
        "64",
        "133",
        "182",
        "10",
        "160",
        "217",
        "54",
        "195",
        "232",
        "30",
        "95",
        "73",
        "56",
        "105",
        "9",
        "177",
        "143"
      ],
      "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}