TransactionSEALED
▪&?!@@□▒&^▪◇◆╳▓▫▪^░▓*╲@●█^█▪░○╱▫█○&▒□!●○^█■○░╳@◆▪^&!*▒○?^□◇▪*~&╲
Transaction ID
Transaction Summary
TransactionScript Arguments
0publicKeys[Crypto.KeyListEntry]
[
{
"keyIndex": "1000",
"publicKey": {
"publicKey": [
"47",
"81",
"113",
"224",
"175",
"42",
"51",
"107",
"101",
"29",
"132",
"94",
"132",
"222",
"60",
"124",
"137",
"138",
"138",
"41",
"166",
"184",
"217",
"89",
"254",
"3",
"66",
"212",
"76",
"238",
"131",
"242",
"255",
"159",
"118",
"13",
"103",
"252",
"254",
"169",
"149",
"24",
"132",
"124",
"164",
"72",
"200",
"148",
"4",
"29",
"249",
"247",
"142",
"181",
"5",
"73",
"147",
"18",
"1",
"137",
"175",
"112",
"82",
"74"
],
"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": [
"47",
"81",
"113",
"224",
"175",
"42",
"51",
"107",
"101",
"29",
"132",
"94",
"132",
"222",
"60",
"124",
"137",
"138",
"138",
"41",
"166",
"184",
"217",
"89",
"254",
"3",
"66",
"212",
"76",
"238",
"131",
"242",
"255",
"159",
"118",
"13",
"103",
"252",
"254",
"169",
"149",
"24",
"132",
"124",
"164",
"72",
"200",
"148",
"4",
"29",
"249",
"247",
"142",
"181",
"5",
"73",
"147",
"18",
"1",
"137",
"175",
"112",
"82",
"74"
],
"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": [
"47",
"81",
"113",
"224",
"175",
"42",
"51",
"107",
"101",
"29",
"132",
"94",
"132",
"222",
"60",
"124",
"137",
"138",
"138",
"41",
"166",
"184",
"217",
"89",
"254",
"3",
"66",
"212",
"76",
"238",
"131",
"242",
"255",
"159",
"118",
"13",
"103",
"252",
"254",
"169",
"149",
"24",
"132",
"124",
"164",
"72",
"200",
"148",
"4",
"29",
"249",
"247",
"142",
"181",
"5",
"73",
"147",
"18",
"1",
"137",
"175",
"112",
"82",
"74"
],
"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}