TransactionUNKNOWN
▓◆▓╲●□▒╱@●█╲●?○#█◇▫░╲#░█&▪╳▫○░□█&▓◆^@~▫╳$╲@▪?○╳%~#●╲^~╲!█╲▪^!#■@
Transaction ID
Transaction Summary
UpdatingTransaction
Script Arguments
Copy:
0publicKeys[Crypto.KeyListEntry]
[
{
"keyIndex": "1000",
"publicKey": {
"publicKey": [
"21",
"59",
"64",
"84",
"170",
"76",
"70",
"189",
"205",
"122",
"80",
"145",
"210",
"82",
"236",
"104",
"232",
"230",
"202",
"2",
"181",
"223",
"187",
"52",
"97",
"165",
"242",
"48",
"26",
"170",
"60",
"60",
"1",
"244",
"94",
"148",
"6",
"124",
"14",
"69",
"247",
"42",
"219",
"138",
"248",
"230",
"31",
"195",
"35",
"177",
"118",
"76",
"142",
"185",
"7",
"209",
"247",
"0",
"45",
"47",
"170",
"4",
"222",
"77"
],
"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}