TransactionSEALED
░╲◆#▒^░~@!█$~░^@▫?■▓^▓?╱*○&▒╱▫■~!╳▪▪▪!?▪□#◇▪●■▓○?!░▫#●!■▓$▒#╲#▫▪
Transaction ID
Transaction Summary
TransactionScript Arguments
0publicKeys[Crypto.KeyListEntry]
[
{
"keyIndex": "1000",
"publicKey": {
"publicKey": [
"46",
"214",
"246",
"217",
"90",
"73",
"28",
"106",
"18",
"123",
"113",
"19",
"175",
"21",
"52",
"103",
"96",
"149",
"130",
"147",
"179",
"252",
"246",
"252",
"255",
"139",
"252",
"94",
"189",
"26",
"132",
"114",
"25",
"84",
"113",
"218",
"76",
"51",
"208",
"30",
"12",
"114",
"169",
"155",
"168",
"39",
"157",
"83",
"76",
"14",
"204",
"68",
"16",
"95",
"210",
"163",
"140",
"56",
"18",
"34",
"189",
"172",
"94",
"173"
],
"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": [
"46",
"214",
"246",
"217",
"90",
"73",
"28",
"106",
"18",
"123",
"113",
"19",
"175",
"21",
"52",
"103",
"96",
"149",
"130",
"147",
"179",
"252",
"246",
"252",
"255",
"139",
"252",
"94",
"189",
"26",
"132",
"114",
"25",
"84",
"113",
"218",
"76",
"51",
"208",
"30",
"12",
"114",
"169",
"155",
"168",
"39",
"157",
"83",
"76",
"14",
"204",
"68",
"16",
"95",
"210",
"163",
"140",
"56",
"18",
"34",
"189",
"172",
"94",
"173"
],
"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": [
"46",
"214",
"246",
"217",
"90",
"73",
"28",
"106",
"18",
"123",
"113",
"19",
"175",
"21",
"52",
"103",
"96",
"149",
"130",
"147",
"179",
"252",
"246",
"252",
"255",
"139",
"252",
"94",
"189",
"26",
"132",
"114",
"25",
"84",
"113",
"218",
"76",
"51",
"208",
"30",
"12",
"114",
"169",
"155",
"168",
"39",
"157",
"83",
"76",
"14",
"204",
"68",
"16",
"95",
"210",
"163",
"140",
"56",
"18",
"34",
"189",
"172",
"94",
"173"
],
"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}