TransactionSEALED

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

Transaction ID

Timestamp

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

Block Height

86,041,824

Computation

0

Proposerseq:330 key:563

Authorizers

1

Transaction Summary

Transaction

Script Arguments

0publicKeys[Crypto.KeyListEntry]
[
  {
    "keyIndex": "1000",
    "publicKey": {
      "publicKey": [
        "175",
        "3",
        "95",
        "138",
        "56",
        "184",
        "225",
        "188",
        "204",
        "9",
        "114",
        "126",
        "147",
        "198",
        "130",
        "93",
        "52",
        "25",
        "157",
        "247",
        "13",
        "26",
        "167",
        "16",
        "30",
        "193",
        "235",
        "17",
        "107",
        "52",
        "181",
        "246",
        "104",
        "96",
        "135",
        "6",
        "231",
        "185",
        "216",
        "1",
        "150",
        "191",
        "20",
        "225",
        "20",
        "175",
        "27",
        "18",
        "50",
        "194",
        "98",
        "80",
        "238",
        "59",
        "60",
        "8",
        "201",
        "61",
        "46",
        "93",
        "174",
        "35",
        "175",
        "248"
      ],
      "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": [
        "175",
        "3",
        "95",
        "138",
        "56",
        "184",
        "225",
        "188",
        "204",
        "9",
        "114",
        "126",
        "147",
        "198",
        "130",
        "93",
        "52",
        "25",
        "157",
        "247",
        "13",
        "26",
        "167",
        "16",
        "30",
        "193",
        "235",
        "17",
        "107",
        "52",
        "181",
        "246",
        "104",
        "96",
        "135",
        "6",
        "231",
        "185",
        "216",
        "1",
        "150",
        "191",
        "20",
        "225",
        "20",
        "175",
        "27",
        "18",
        "50",
        "194",
        "98",
        "80",
        "238",
        "59",
        "60",
        "8",
        "201",
        "61",
        "46",
        "93",
        "174",
        "35",
        "175",
        "248"
      ],
      "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": [
        "175",
        "3",
        "95",
        "138",
        "56",
        "184",
        "225",
        "188",
        "204",
        "9",
        "114",
        "126",
        "147",
        "198",
        "130",
        "93",
        "52",
        "25",
        "157",
        "247",
        "13",
        "26",
        "167",
        "16",
        "30",
        "193",
        "235",
        "17",
        "107",
        "52",
        "181",
        "246",
        "104",
        "96",
        "135",
        "6",
        "231",
        "185",
        "216",
        "1",
        "150",
        "191",
        "20",
        "225",
        "20",
        "175",
        "27",
        "18",
        "50",
        "194",
        "98",
        "80",
        "238",
        "59",
        "60",
        "8",
        "201",
        "61",
        "46",
        "93",
        "174",
        "35",
        "175",
        "248"
      ],
      "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}