TransactionSEALED
○^╲●&#○~&●@#&▪░█?!!╳$~◆!*▫▒░$▫?╳╱░╳@?@▪▪▪$╳█%░╳●◆■░#╲▫^□■░*$░&╱■
Transaction ID
Transaction Summary
TransactionScript Arguments
0publicKeys[Crypto.KeyListEntry]
[
{
"keyIndex": "1000",
"publicKey": {
"publicKey": [
"186",
"135",
"242",
"249",
"249",
"140",
"127",
"143",
"169",
"73",
"87",
"189",
"183",
"89",
"60",
"123",
"82",
"71",
"201",
"153",
"189",
"238",
"96",
"155",
"56",
"41",
"129",
"117",
"235",
"202",
"208",
"153",
"146",
"203",
"154",
"70",
"138",
"235",
"84",
"21",
"92",
"137",
"24",
"36",
"206",
"158",
"226",
"27",
"46",
"45",
"36",
"70",
"229",
"88",
"97",
"147",
"216",
"17",
"13",
"194",
"135",
"244",
"202",
"179"
],
"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": [
"186",
"135",
"242",
"249",
"249",
"140",
"127",
"143",
"169",
"73",
"87",
"189",
"183",
"89",
"60",
"123",
"82",
"71",
"201",
"153",
"189",
"238",
"96",
"155",
"56",
"41",
"129",
"117",
"235",
"202",
"208",
"153",
"146",
"203",
"154",
"70",
"138",
"235",
"84",
"21",
"92",
"137",
"24",
"36",
"206",
"158",
"226",
"27",
"46",
"45",
"36",
"70",
"229",
"88",
"97",
"147",
"216",
"17",
"13",
"194",
"135",
"244",
"202",
"179"
],
"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": [
"186",
"135",
"242",
"249",
"249",
"140",
"127",
"143",
"169",
"73",
"87",
"189",
"183",
"89",
"60",
"123",
"82",
"71",
"201",
"153",
"189",
"238",
"96",
"155",
"56",
"41",
"129",
"117",
"235",
"202",
"208",
"153",
"146",
"203",
"154",
"70",
"138",
"235",
"84",
"21",
"92",
"137",
"24",
"36",
"206",
"158",
"226",
"27",
"46",
"45",
"36",
"70",
"229",
"88",
"97",
"147",
"216",
"17",
"13",
"194",
"135",
"244",
"202",
"179"
],
"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}