TransactionSEALED
~▪○█╲●▪*○!╳■◇◇^╱▓■█╱^▫█■▪^#█◆▫@▪╱!○○╱%╲○*^^▫╲▪*█░◆&○█!▒$◇╱╳◇■%◇$
Transaction ID
Transaction Summary
TransactionScript Arguments
0publicKeys[Crypto.KeyListEntry]
[
{
"keyIndex": "1000",
"publicKey": {
"publicKey": [
"196",
"106",
"70",
"179",
"158",
"79",
"2",
"220",
"104",
"119",
"78",
"87",
"2",
"38",
"129",
"27",
"225",
"65",
"141",
"162",
"128",
"190",
"151",
"174",
"101",
"74",
"11",
"214",
"213",
"70",
"182",
"33",
"254",
"34",
"244",
"209",
"215",
"105",
"178",
"76",
"37",
"113",
"65",
"137",
"54",
"217",
"25",
"67",
"158",
"172",
"149",
"19",
"210",
"199",
"207",
"22",
"149",
"33",
"177",
"144",
"28",
"157",
"126",
"111"
],
"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": [
"196",
"106",
"70",
"179",
"158",
"79",
"2",
"220",
"104",
"119",
"78",
"87",
"2",
"38",
"129",
"27",
"225",
"65",
"141",
"162",
"128",
"190",
"151",
"174",
"101",
"74",
"11",
"214",
"213",
"70",
"182",
"33",
"254",
"34",
"244",
"209",
"215",
"105",
"178",
"76",
"37",
"113",
"65",
"137",
"54",
"217",
"25",
"67",
"158",
"172",
"149",
"19",
"210",
"199",
"207",
"22",
"149",
"33",
"177",
"144",
"28",
"157",
"126",
"111"
],
"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": [
"196",
"106",
"70",
"179",
"158",
"79",
"2",
"220",
"104",
"119",
"78",
"87",
"2",
"38",
"129",
"27",
"225",
"65",
"141",
"162",
"128",
"190",
"151",
"174",
"101",
"74",
"11",
"214",
"213",
"70",
"182",
"33",
"254",
"34",
"244",
"209",
"215",
"105",
"178",
"76",
"37",
"113",
"65",
"137",
"54",
"217",
"25",
"67",
"158",
"172",
"149",
"19",
"210",
"199",
"207",
"22",
"149",
"33",
"177",
"144",
"28",
"157",
"126",
"111"
],
"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}