TransactionUNKNOWN
&╲▫■○○◆□~▫▓@▫▒~#◆#◆$▓*▒&&■▓^■●@*╲▒▫!█$◆*╱^◇#▫^$▫■*▪!%◇@█▫!@*&●!*
Transaction ID
Transaction Summary
UpdatingTransaction
Script Arguments
Copy:
0publicKeys[Crypto.KeyListEntry]
[
{
"keyIndex": "1000",
"publicKey": {
"publicKey": [
"18",
"192",
"4",
"158",
"22",
"203",
"203",
"184",
"49",
"6",
"132",
"173",
"97",
"135",
"89",
"88",
"23",
"8",
"136",
"105",
"104",
"49",
"236",
"151",
"4",
"90",
"105",
"91",
"175",
"28",
"93",
"153",
"97",
"187",
"185",
"8",
"21",
"163",
"176",
"70",
"29",
"8",
"107",
"11",
"82",
"60",
"142",
"106",
"21",
"108",
"72",
"178",
"12",
"34",
"98",
"218",
"48",
"208",
"201",
"181",
"137",
"184",
"120",
"98"
],
"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: 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}