TransactionSEALED
▓▒▓○▓▒□◇██╱*▪○▫!█▪▒╱◇◇▒■◆□@◆&$○&~$◇▫%^#!●◆◇╲◇○□██!@%●░◇?◆▫%●◆╱&▒
Transaction ID
Transaction Summary
TransactionScript Arguments
0publicKeys[Crypto.KeyListEntry]
[
{
"keyIndex": "1000",
"publicKey": {
"publicKey": [
"159",
"247",
"183",
"131",
"117",
"200",
"152",
"202",
"101",
"71",
"193",
"236",
"73",
"182",
"160",
"158",
"92",
"212",
"36",
"42",
"241",
"90",
"156",
"199",
"192",
"168",
"234",
"32",
"120",
"179",
"112",
"138",
"168",
"15",
"92",
"18",
"173",
"222",
"81",
"86",
"67",
"47",
"120",
"61",
"99",
"247",
"223",
"62",
"192",
"98",
"156",
"85",
"103",
"48",
"86",
"254",
"153",
"162",
"88",
"149",
"137",
"90",
"222",
"243"
],
"signatureAlgorithm": {
"id": "SignatureAlgorithm",
"fields": [
{
"name": "rawValue",
"value": {
"type": "UInt8",
"value": "1"
}
}
]
}
},
"hashAlgorithm": {
"id": "HashAlgorithm",
"fields": [
{
"name": "rawValue",
"value": {
"type": "UInt8",
"value": "3"
}
}
]
},
"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}